home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-02 | 1.3 KB | 44 lines |
- #!smake
-
- # Makefile for SceneViewer
-
- include /usr/include/make/commondefs
-
- # :++: here, as in
- # src/exampleCode/games/IndiZone/sw
- # src/demos/audio/drive
- # we have had to resort to building Inventor things with the eoe
- # and dev versions of Inventor 1.1.2 since these programs were not
- # able to be ported over to Open Inventor 2.0 in time for v4.1 of
- # the toolbox.
- #
- # please refer to the README.Inventor at the top-of-tree for more
- # information about what one will have to do if one is likewise
- # trying to compile Inventor programs on 5.2 IRIX which have not
- # been ported to Inventor 2.0.
- #
- # (i.e., note use of $(MYROOT) below)
- #
-
- C++FILES= SceneViewer.c++ SoSceneViewer.c++ SvManipList.c++
- HFILES = SoSceneViewer.h SoSceneMenu.h SvManipList.h multicast.h Common.h
-
- TARGETS = SharedSV
-
- # The following 2 lines were added to build w/Inventor 1.1.2 compatibility :++:
- LLDOPTS = -L$(MYROOT)/usr/lib
- LC++INCS= -I. -I$(MYROOT)/usr/include
- LLDLIBS = -lInventorXt -lInventor \
- -lSgm -lXm -lPW -lXt -lgutil -lfm -limage -lgl \
- -lX11 -lm -lC -lmalloc
-
- LC++OPTS = +p +w -Wf,-XNd8000 -Wf,-XNp10000 -Wf,-XNk10000
- LC++DEFS = -DFUNCPROTO
-
- default all: ${TARGETS}
-
- include ${COMMONRULES}
-
- ${TARGETS}: ${OBJECTS}
- ${C++F} -o $@ ${OBJECTS} ${LDFLAGS}
-